[USER (data scientist)]: Sweet! Can you show me how to display, like, the first 10 rows of this filtered DataFrame? Please generate and display the first 10 rows of the dataframe filtered for laptops with at least 256GB SSD from the 'laptops_price.csv' dataset, and save this dataframe as a pickle file.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle

laptops_price = pd.read_csv("laptops_price.csv")

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END:

print(laptops_at_least_256gb_ssd.head(10))

# save data
pickle.dump(laptops_at_least_256gb_ssd.head(10),open("./pred_result/laptops_at_least_256gb_ssd.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Of course! Here's the code to display the first 10 rows of the filtered DataFrame: 
